// app/admin/password-policy/page.tsx
import * as React from "react"
import { Skeleton } from "@/components/ui/skeleton"
import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton"
import { Separator } from "@/components/ui/separator"
import { Alert, AlertDescription } from "@/components/ui/alert"
import { AlertTriangle } from "lucide-react"
import SecuritySettingsTable from "@/components/system/passwordPolicy"
import { getSecuritySettings } from "@/lib/password-policy/service"
export default async function PasswordPolicyPage() {
try {
// 보안 설정 데이터 로드
const securitySettings = await getSecuritySettings()
return (
협력업체 사용자들을 위한 비밀번호 정책과 보안 설정을 관리할 수 있습니다.
협력업체 사용자들을 위한 비밀번호 정책과 보안 설정을 관리할 수 있습니다.